home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Games World / SharewareGames / Xconq 7.2.2 / lib / quest.g < prev    next >
Text File  |  1998-05-22  |  8KB  |  432 lines

  1. (game-module "quest"
  2.   (title "Quest for XP")
  3.   (blurb "Wilderness exploration in a fantasical world")
  4.   (variants (world-seen false) (see-all false))
  5.   (instructions (
  6.     "Explore the world, looking for treasure and killing monsters."
  7.   ))
  8.   )
  9.  
  10. (unit-type novice (image-name "person") (char "@")
  11.   (hp-max 10)
  12.   )
  13. (unit-type wanderer (image-name "person") (char "@")
  14.   (hp-max 20)
  15.   )
  16. (unit-type adventurer (image-name "person") (char "@")
  17.   (hp-max 40)
  18.   )
  19. (unit-type master (image-name "person") (char "@")
  20.   (hp-max 80)
  21.   )
  22.  
  23. ;; should add other levels of human
  24.  
  25. (unit-type goblin
  26.   (hp-max 4)
  27.   )
  28. (unit-type skeleton
  29.   (hp-max 5)
  30.   )
  31. (unit-type orc
  32.   (hp-max 10)
  33.   )
  34. (unit-type elf
  35.   (hp-max 15)
  36.   )
  37. (unit-type dwarf
  38.   (hp-max 9)
  39.   )
  40. (unit-type bugbear
  41.   (hp-max 10)
  42.   )
  43. (unit-type troll
  44.   (hp-max 20)
  45.   )
  46. (unit-type centaur
  47.   (hp-max 20)
  48.   )
  49. (unit-type yeti
  50.   (hp-max 20)
  51.   )
  52. (unit-type dragon
  53.   (hp-max 40)
  54.   )
  55.  
  56. (unit-type ant
  57.   (hp-max 5)
  58.   )
  59. (unit-type beetle
  60.   (hp-max 20)
  61.   )
  62. (unit-type spider
  63.   (hp-max 20)
  64.   )
  65. (unit-type scorpion
  66.   (hp-max 20)
  67.   )
  68.  
  69. (unit-type vampire
  70.   (hp-max 40)
  71.   )
  72.  
  73. (unit-type sorceror
  74.   (hp-max 40)
  75.   )
  76.  
  77. (unit-type purple-worm
  78.   (hp-max 40)
  79.   )
  80.  
  81. (unit-type beholder
  82.   (hp-max 40)
  83.   )
  84.  
  85. (define human (novice wanderer adventurer master))
  86.  
  87. (define humanoid (goblin orc elf dwarf bugbear yeti sorceror))
  88.  
  89. (define reptile (dragon))
  90.  
  91. (define bug (ant beetle spider scorpion))
  92.  
  93. (define undead (skeleton vampire))
  94.  
  95. (define other (troll centaur purple-worm beholder))
  96.  
  97. (define monster (append humanoid reptile bug undead other))
  98.  
  99. (define animate (append human monster))
  100.  
  101. (define living (append human humanoid reptile bug centaur purple-worm beholder))
  102.  
  103. (unit-type diamond-ring (image-name "ring")
  104.   )
  105. (unit-type treasure-chest
  106.   )
  107.  
  108. (define objects (diamond-ring treasure-chest))
  109.  
  110. (unit-type lair
  111.   (hp-max 20)
  112.   )
  113. (unit-type village
  114.   (hp-max 20)
  115.   )
  116. (unit-type town (image-name "town20") (char "*")
  117.   (hp-max 50)
  118.   )
  119. (unit-type castle (char "K")
  120.   (hp-max 50)
  121.   )
  122. (unit-type city (image-name "city18") (char "!")
  123.   (hp-max 100)
  124.   )
  125.  
  126. (define places (lair village town castle city))
  127.  
  128. (material-type food
  129.   )
  130. (material-type water
  131.   )
  132. (material-type gold
  133.   )
  134.  
  135. (include "stdterr")
  136.  
  137. (define water-t* (sea shallows))
  138. (define land (swamp plains forest desert mountains))
  139.  
  140. (include "ng-weird")
  141.  
  142. (add human namer "generic-names")
  143.  
  144. (add places namer "generic-names")
  145. (add lair namer "")
  146.  
  147. (add human possible-sides "human")
  148.  
  149. (add monster possible-sides "monster")
  150.  
  151. (add lair possible-sides "monster")
  152.  
  153. ;;; Static relationships.
  154.  
  155. (table vanishes-on
  156.   (animate water-t* true)
  157.   (dragon water-t* false)
  158.   (yeti t* true)
  159.   (yeti (mountains ice) false)
  160.   (places water-t* true)
  161.   (places ice true)
  162.   )
  163.  
  164. ;;; Unit-unit capacities.
  165.  
  166. (add human capacity 10)
  167.  
  168. (add places capacity (20 20 40 40 80))
  169.  
  170. (table unit-size-as-occupant
  171.   (u* u* 100)
  172.   (animate places 1)
  173.   ;; Rings are so small anybody can can carry hundreds.
  174.   (diamond-ring human 0)
  175.   (treasure-chest human 5)
  176.   )
  177.  
  178. ;;; Unit-terrain capacities.
  179.  
  180. (add t* capacity 16)
  181.  
  182. (table unit-size-in-terrain
  183.   (u* t* 1)
  184.   (village t* 9)
  185.   (town t* 12)
  186.   (castle t* 9)
  187.   (city t* 16)
  188.   )
  189.  
  190. ;;; Unit-material capacities.
  191.  
  192. (table unit-storage-x
  193.   (living food 1)
  194.   (living water 4)
  195.   (novice m* (10 5 100))
  196.   (wanderer m* (10 5 100))
  197.   (adventurer m* (10 5 100))
  198.   (master m* (10 5 100))
  199.   (dragon gold 1000)
  200.   (treasure-chest gold 1000)
  201.   )
  202.  
  203. ;;; Vision.
  204.  
  205. (add places already-seen 100)
  206. (add lair already-seen 0)
  207. (add village already-seen 50)
  208. (add castle already-seen 50)
  209.  
  210. ;;; Actions.
  211.  
  212. (add u* acp-per-turn 4)
  213. (add places acp-per-turn 0)
  214. (add lair acp-per-turn 1)
  215.  
  216. ;;; Movement.
  217.  
  218. (add places speed 0)
  219.  
  220. (table mp-to-enter-terrain
  221.   ;; Accident prevention.
  222.   (animate water-t* 99)
  223.   (animate mountains 2)
  224.   (animate ice 3)
  225.   (animate river 0)
  226.   (humanoid river 1)
  227.   (animate road 0)
  228.   (dwarf mountains 1)
  229.   ;; Insects aren't intelligent enough to figure out how to cross water.
  230.   (bug river 99)
  231.   (yeti t* 99)
  232.   (yeti (mountains ice) 0)
  233.   ;; Dragons can go anywhere.
  234.   (dragon t* 0)
  235.   )
  236.  
  237. (table mp-to-leave-terrain
  238.   ;; Forests are hard to get out of.
  239.   (humanoid forest 1)
  240.   ;; ...but not for elves.
  241.   (elf forest 0)
  242.   ;; Swamps are hard to get out of too.
  243.   (humanoid swamp 1)
  244.   (elf swamp 0)
  245.   ;; Note that we make mountains harder to enter,
  246.   ;; but exact no penalty for departure (walking
  247.   ;; downhill is easy).
  248.   )
  249.  
  250. (table mp-to-traverse
  251.   (animate road 1)
  252.   )
  253.  
  254. (table can-enter-independent
  255.   (human places true)
  256.   ((elf dwarf) places true)
  257.   )
  258.  
  259. ;;; Construction.
  260.  
  261. (add monster cp 5)
  262.  
  263. (table acp-to-create
  264.   (lair monster 1)
  265.   )
  266.  
  267. (table acp-to-build
  268.   (lair monster 1)
  269.   )
  270.  
  271. ;;; Combat.
  272.  
  273. (table acp-to-attack
  274.   (animate places 0)
  275.   (dragon places 2)
  276.   )
  277.  
  278. (table hit-chance
  279.   (u* u* 50)
  280.   (animate places 0)
  281.   (dragon places 100)
  282.   (beholder u* 80)
  283.   (purple-worm u* 80)
  284.   (places u* 0)
  285.   )
  286.  
  287. (table damage
  288.   (u* u* 1)
  289.   (animate places 0)
  290.   (beholder u* 1d4)
  291.   (dragon animate 1d5)
  292.   (dragon places 1d4)
  293.   (purple-worm animate 1d10)
  294.   (places u* 0)
  295.   )
  296.  
  297. ;;; Backdrop.
  298.  
  299. (add u* hp-recovery 100)
  300.  
  301. (table base-production
  302.   (living food 1)
  303.   (living water 4)
  304.   (places food 10)
  305.   (places water 100)
  306.   )
  307.  
  308. (table productivity
  309.   (living desert 0)
  310.   ;; Insect types are usually well-adapted to desert.
  311.   (bug desert 100)
  312.   (lair land (0 100 50 20 20))
  313.   (village land (0 100 50 20 20))
  314.   (town land (0 100 50 20 20))
  315.   (city land (0 100 50 20 20))
  316.   )
  317.  
  318. (table base-consumption
  319.   (living food 1)
  320.   (living water 1)
  321.   )
  322.  
  323. (table hp-per-starve
  324.   (living food 1.00)
  325.   ;; Dragons are very tough.
  326.   (dragon food 0.10)
  327.   (living water 1.00)
  328.   (dragon water 0.10)
  329.   )
  330.  
  331. ;;; Random setup.
  332.  
  333. (add cell-t* alt-percentile-min (  0  20  24  24  24  24  90  97))
  334. (add cell-t* alt-percentile-max ( 20  24  30  90  90  90  97 100))
  335. (add cell-t* wet-percentile-min (  0   0  50   0  20  80   0   0))
  336. (add cell-t* wet-percentile-max (100 100 100  20  80 100 100 100))
  337.  
  338. ;;; One adventurer on a side.
  339.  
  340. (add novice start-with 1)
  341.  
  342. ;; A sampling of monsters.
  343. (add monster start-with 1)
  344. (add orc start-with 5)
  345. (add lair start-with 3)
  346.  
  347. (set country-radius-min 8)
  348. (set country-separation-min 15)
  349. (set country-separation-max 20)
  350.  
  351. (table favored-terrain
  352.   (u* t* 0)
  353.   (u* (sea shallows) 0) 
  354.   (u* plains 100)
  355.   (elf forest 100)
  356.   (dwarf plains 20)
  357.   (dwarf mountains 100)
  358.   (centaur forest 100)
  359.   (scorpion desert 100)
  360.   (yeti t* 0)
  361.   (yeti mountains 50)
  362.   (yeti ice 100)
  363.   (dragon mountains 100)
  364.   (lair plains 10)
  365.   (lair (desert forest mountains) (20 100 100))
  366.   )
  367.  
  368. (table independent-density
  369.   (village (plains forest) (300 100))
  370.   (town (plains forest) (100 50))
  371.   (castle (plains forest mountains) (100 50 50))
  372.   (city plains 10)
  373.   )
  374.  
  375. (table road-chance
  376.   (town (town city) ( 2   5))
  377.   (castle (town city) 20)
  378.   (city (town city) (80 100))
  379.   )
  380.  
  381. (add (town city) road-to-edge-chance 100)
  382.  
  383. (set edge-road-density 100)
  384.  
  385. ;; Nearly all towns and villages should be connected by road to
  386. ;; somewhere else.
  387.  
  388. (add village spur-chance 50)
  389. (add village spur-range 2)
  390.  
  391. (add town spur-chance 90)
  392. (add town spur-range 2)
  393.  
  394. (add castle spur-chance 90)
  395. (add castle spur-range 2)
  396.  
  397. ;(set synthesis-methods
  398. ;  '(make-maze-terrain make-countries make-independent-units))
  399.  
  400. (set sides-min 1)
  401.  
  402. (side 1 (name "You") (class "human"))
  403.  
  404. (side 2 (noun "Monster") (class "monster") (emblem-name "none"))
  405.  
  406. (table unit-initial-supply
  407.   ;; Give everybody a full supply of food and water initially.
  408.   (u* food 10000)
  409.   (u* water 10000)
  410.   (u* gold 0)
  411.   )
  412.  
  413. (scorekeeper (do last-side-wins))
  414.  
  415. (game-module (notes (
  416.   "This is an outdoors adventure for individuals."
  417.   )))
  418.  
  419. ;;; Various pieces of equipment should be available.
  420.  
  421. ;;; Have nobrains machine-run sides for countries, towns, castles, etc.
  422. ;;; (or quiescent unless player becomes outlaw?)
  423.  
  424. ;;; Monsters belong to sides defined by alignment.  Sides of matching
  425. ;;; alignment friendly, etc.  No brains to side, but player could run
  426. ;;; a monster side, just for fun.
  427. ;;; Monsters can breed periodically, but limit total # somehow.
  428.  
  429. ;;; Win by collecting the most treasure after <n> turns.
  430. ;;; Treasure should be hidden inside towns, carried by monsters.
  431.  
  432.